Nevron Open Vision Documentation
Nevron.Nov Namespace / NAggregatePromise Class / AllResolved Method / AllResolved(INPromise[]) Method


In This Topic
    AllResolved(INPromise[]) Method
    In This Topic
    The AllResolved method returns a promise that resolves after all of the given promises have either fulfilled or rejected, with an array of booleans each of which describes whether the promise at the specified ordinal fulfilled or rejected.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function AllResolved( _
       ByVal ParamArray promises() As INPromise _
    ) As NPromise(Of Boolean())
    'Usage
     
    
    Dim promises() As INPromise
    Dim value As NPromise(Of Boolean())
     
    value = NAggregatePromise.AllResolved(promises)
    public static NPromise<bool[]> AllResolved( 
       params INPromise[] promises
    )

    Parameters

    promises
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also